home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1997 February / Computer Life February 1997.iso / S / wws9530 / Product / WORDSRCH.EXE / 0 / RCDATA / TASCIIOUTPUT / TASCIIOUTPUT.txt
Text File  |  1996-03-09  |  3KB  |  163 lines

  1. object AsciiOutput: TAsciiOutput
  2.   Left = 300
  3.   Top = 116
  4.   BorderStyle = bsDialog
  5.   Caption = 'Output To Ascii File'
  6.   ClientHeight = 224
  7.   ClientWidth = 437
  8.   Font.Color = clBlack
  9.   Font.Height = -17
  10.   Font.Name = 'Arial'
  11.   Font.Style = []
  12.   PixelsPerInch = 120
  13.   Position = poScreenCenter
  14.   Scaled = False
  15.   OnShow = FormShow
  16.   TextHeight = 19
  17.   object Panel1: TPanel
  18.     Left = 4
  19.     Top = 4
  20.     Width = 429
  21.     Height = 73
  22.     Color = clTeal
  23.     TabOrder = 0
  24.     object Label1: TLabel
  25.       Left = 8
  26.       Top = 8
  27.       Width = 417
  28.       Height = 61
  29.       AutoSize = False
  30.       Caption = 
  31.         'This function allows you to save the current puzzle into a stand' +
  32.         'ard text file.  This will permit you to edit and print the puzzl' +
  33.         'e using your favorite word processor.'
  34.       Font.Color = clBlack
  35.       Font.Height = -17
  36.       Font.Name = 'Arial'
  37.       Font.Style = []
  38.       ParentFont = False
  39.     end
  40.   end
  41.   object Panel2: TPanel
  42.     Left = 8
  43.     Top = 88
  44.     Width = 221
  45.     Height = 89
  46.     TabOrder = 1
  47.     object Label2: TLabel
  48.       Left = 4
  49.       Top = 8
  50.       Width = 209
  51.       Height = 25
  52.       Alignment = taCenter
  53.       AutoSize = False
  54.       Caption = 'Spaces Between Letters'
  55.       Font.Color = clBlack
  56.       Font.Height = -17
  57.       Font.Name = 'Arial'
  58.       Font.Style = [fsBold]
  59.       ParentFont = False
  60.     end
  61.     object NoLetter: TRadioButton
  62.       Left = 20
  63.       Top = 36
  64.       Width = 81
  65.       Height = 17
  66.       Caption = 'None'
  67.       TabOrder = 0
  68.       OnClick = NoLetterClick
  69.     end
  70.     object OneLetter: TRadioButton
  71.       Left = 20
  72.       Top = 60
  73.       Width = 81
  74.       Height = 17
  75.       Caption = 'One'
  76.       TabOrder = 1
  77.       OnClick = OneLetterClick
  78.     end
  79.     object TwoLetter: TRadioButton
  80.       Left = 124
  81.       Top = 36
  82.       Width = 81
  83.       Height = 17
  84.       Caption = 'Two'
  85.       TabOrder = 2
  86.       OnClick = TwoLetterClick
  87.     end
  88.     object ThreeLetter: TRadioButton
  89.       Left = 124
  90.       Top = 60
  91.       Width = 81
  92.       Height = 17
  93.       Caption = 'Three'
  94.       TabOrder = 3
  95.       OnClick = ThreeLetterClick
  96.     end
  97.   end
  98.   object Panel3: TPanel
  99.     Left = 240
  100.     Top = 88
  101.     Width = 189
  102.     Height = 89
  103.     TabOrder = 2
  104.     object Label3: TLabel
  105.       Left = 12
  106.       Top = 8
  107.       Width = 169
  108.       Height = 25
  109.       Alignment = taCenter
  110.       AutoSize = False
  111.       Caption = 'Line Spacing'
  112.       Font.Color = clBlack
  113.       Font.Height = -17
  114.       Font.Name = 'Arial'
  115.       Font.Style = [fsBold]
  116.       ParentFont = False
  117.     end
  118.     object SingleLine: TRadioButton
  119.       Left = 52
  120.       Top = 36
  121.       Width = 113
  122.       Height = 17
  123.       Caption = 'Single'
  124.       TabOrder = 0
  125.       OnClick = SingleLineClick
  126.     end
  127.     object DoubleLine: TRadioButton
  128.       Left = 52
  129.       Top = 60
  130.       Width = 113
  131.       Height = 17
  132.       Caption = 'Double'
  133.       TabOrder = 1
  134.       OnClick = DoubleLineClick
  135.     end
  136.   end
  137.   object OkButton: TButton
  138.     Left = 76
  139.     Top = 184
  140.     Width = 129
  141.     Height = 33
  142.     Caption = '&Ok'
  143.     TabOrder = 3
  144.     OnClick = OkButtonClick
  145.   end
  146.   object CancelButton: TButton
  147.     Left = 220
  148.     Top = 184
  149.     Width = 129
  150.     Height = 33
  151.     Caption = '&Cancel'
  152.     TabOrder = 4
  153.     OnClick = CancelButtonClick
  154.   end
  155.   object MySaveDialog: TSaveDialog
  156.     DefaultExt = 'TXT'
  157.     Filter = 'Text File (*.TXT)|*.TXT'
  158.     Title = 'Puzzle To Ascii Text File'
  159.     Left = 384
  160.     Top = 188
  161.   end
  162. end
  163.